home *** CD-ROM | disk | FTP | other *** search
- /*
- * items.h - menu item definitions.
- *
- * NEEDS: menu.h
- * Owned by: menu.c
- */
-
- #define APPLEMENU 1 /* Menu ID for Apple menu */
- #define FILEMENU 2 /* File */
- #define EDITMENU 3 /* Edit */
- #define VOICEMENU 4 /* Voice Setup menu */
- #define LASTMENU 4 /* Number of menus */
-
- /* items in the Apple menu */
- #define AP_ABOUT 1 /* About... */
-
- /* Items in the File menu */
- #define IQUIT 1 /* quit the program */
-
- /* items in the Edit menu */
- #define UNDOEDIT 1 /* Undo */
- /*----2----*/
- #define CUTEDIT 3 /* Cut */
- #define COPYEDIT 4 /* Copy */
- #define PASTEEDIT 5 /* Paste */
- #define CLEAREDIT 6 /* Clear */
-
- /* items in the Voice menu */
- #define VO_SETUP 1 /* Setup the Voice parameters */
-
- /*
- * mymenus[] - indexed by menu number, mymenus[] contains the handle for
- * each menu.
- */
-
- #ifndef DATA
- extern
- #endif
- MenuHandle mymenus[LASTMENU + 1];
-